home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / ScreenSavers / BackSpaceViews / IvoView.BackModule / IvoView.h < prev    next >
Text File  |  1995-06-12  |  509b  |  31 lines

  1. //
  2. //  IvoViewPart.h
  3. //  Darcy Brockbank, samurai@uriel.cs.mcgill.ca
  4.  
  5. // Adapted from GloveView, written by :
  6. //  Ron Blanford, TRW Inc., October 1991.
  7. //
  8.  
  9. #import "IVOSlidingImageView.h"
  10.  
  11. @interface IvoView:IVOSlidingImageView
  12. {
  13.     id imageList;
  14.     int currentFrame;
  15.     int numberOfFrames;
  16.     BStimeval now;
  17.     BStimeval nextRotationTime;
  18.     int framesPerSecond;
  19.     id sharedInspectorPanel;
  20.     id appowner;
  21.     id slider;
  22.     id loadingPanel;
  23.     id field;
  24. }
  25.  
  26. - setFramesPer:sender;
  27. - oneStep;
  28. - initFrame:(NXRect *)frameRect;
  29.  
  30. @end
  31.